home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C++ / Applications / NeuroSim 1.0 / .h / CStdNeuralNet.h < prev    next >
Text File  |  1996-02-19  |  515b  |  18 lines

  1. // ===========================================================================
  2. //    CStdNeuralNet.h                ©1996 Timo Eloranta
  3. // ===========================================================================
  4. //  A concrete neural net class derived from the abstract CNeuralNet class
  5.  
  6. #pragma once                        // Include this header only once
  7.  
  8. #include "CNeuralNet.h"
  9.  
  10. class CStdNeuralNet : public CNeuralNet
  11. {
  12.     public:
  13.                      CStdNeuralNet( const SGenParams &inParams );
  14.         virtual        ~CStdNeuralNet();
  15.         
  16.         void        CreateMatrix( );
  17. };
  18.